body {
    font-family: Arial, sans-serif;
    max-width: 600px;
    margin: auto;
    padding: 20px;
    text-align: center;
    background-color: #000;
    color: #fff;
    
}
.oeuvre {
    margin-bottom: 20px;
}
.oeuvre img {
    width: 300%;
    max-width: 300px;
    height: auto;
    display: block;
    margin: auto;
}
.titre {
    margin-top: 5px;
    font-weight: bold;
}
.date-item {
    text-align: center;
    max-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    margin: auto;
}
  
.date-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
  
.date-item img {
    width: 100%;
    height: auto;
    transition: opacity 0.3s ease;
    border-radius: 10px;
}
  
.date-item:hover img {
    opacity: 0.9;
}
  
.date-item p {
    margin-top: 10px;
    font-weight: bold;
}
.work-title {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.1rem;
    font-weight: bold;
    color: #222;
    margin-top: 20px;
    margin-bottom: 5px;
    text-align: center;
    display: inline-block;
}
  
.work-info {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1rem;
    color: #555;
    text-align: center;
    margin-bottom: 30px;
}
.year-title {
    font-size: 50px;
    font-family: "Courier New", Courier, monospace;
    font-weight: normal;
    color: #2b2929;
    text-align: center;
    margin: 20px 0;
}
/* Style commun à toutes les images de tableaux */
/* Style commun à toutes les images de tableaux */
img.tableau {
    display: block;
    margin: 20px auto;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    /* border-radius supprimé pour des angles carrés */
}
  
  /* Différentes tailles */
img.tableau.grand {
    width: 80%;
    max-width: 900px;
    height: auto;
}
  
img.tableau.moyen {
    width: 60%;
    max-width: 700px;
    height: auto;
}
  
img.tableau.petit {
    width: 40%;
    max-width: 500px;
    height: auto;
}
  